7cf0e983f823e9da653991d526851845d59c9e4d,src/main/java/com/easypost/model/Rate.java,Rate,retrieve,#String#String#,68
Before Change
return retrieve(id, null);
}
public static Rate retrieve(String id, String apiKey) throws EasyPostException {
return request(RequestMethod.GET, instanceURL(Rate.class, id), null, Rate.class, apiKey);
}
// all
After Change
}
public static Rate retrieve(String id, String apiKey) throws EasyPostException {
Rate response;
response = request(RequestMethod.GET, instanceURL(Rate.class, id), null, Rate.class, apiKey);
return response;
}
// all